home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C++ / Applications / Lookup 1.0d2 / Includes / ResourceIDs.h < prev   
Encoding:
C/C++ Source or Header  |  1995-07-25  |  775 b   |  43 lines  |  [TEXT/CWIE]

  1. //
  2. //    ResourceIDs.h
  3. //
  4.  
  5. #ifndef __ResourceIDs_h__
  6. #define __ResourceIDs_h__
  7.  
  8. #if REZ
  9.  
  10. // These are defined as const ResIDTs in PP_Resources.h. We need to
  11. // redeclare them so that Rez can parse them.
  12. #define MBAR_Initial        128
  13. #define    MENU_Apple            128
  14.  
  15. #define    STRx_Standards        200
  16. #define STRx_RedoEdit        150
  17. #define STRx_UndoEdit        151
  18. #define STRx_RedoDrag        152
  19. #define STRx_UndoDrag        153
  20.  
  21. #endif
  22.  
  23. #define    MENU_File            129
  24. #define    MENU_Edit            130
  25.  
  26. #define    STRx_Untitled        300
  27.  
  28. #if !REZ
  29.  
  30. const ResIDT    WIND_LookupWindow    = 200;
  31.  
  32. const ResIDT    prto_TextDoc        = 201;
  33.  
  34. const Int16        str_UndoAdd            = 8;
  35. const Int16        str_RedoAdd            = 8;
  36. const Int16        str_UndoChange        = 9;
  37. const Int16        str_RedoChange        = 9;
  38. const Int16        str_UndoDelete        = 10;
  39. const Int16        str_RedoDelete        = 10;
  40.  
  41. #endif
  42.  
  43. #endif